ROSTemplateFormatVersion: '2015-09-01'
Transform: 'Aliyun::Serverless-2018-04-03'
Resources:
  {{ service }}:
    Type: 'Aliyun::Serverless::Service'
    Properties:
      Description: 'helloworld'
    {{ projectName }}:
      Type: 'Aliyun::Serverless::Function'
      Properties:
        Handler: index.handler
        Runtime: custom
        MemorySize: 512
        CodeUri: './'
        EnvironmentVariables:
          'PATH': '/usr/local/ruby/bin'